Micron Document
baubs git

Node / mirrors / respira / files / src / components / ProgressMonitor / ProgressSection.tsx

Displaying Raw • Download

src/components/ProgressMonitor/ProgressSection.tsx fix-relative-positioning (5d456008) Text, 528 B

/**
* ProgressSection Component
*
* Displays the progress bar
*/

import { Progress } from "@/components/ui/progress";

interface ProgressSectionProps {
progressPercent: number;
}

export function ProgressSection({ progressPercent }: ProgressSectionProps) {
return (
<div className="mb-3">
<Progress
value={progressPercent}
className="h-3 [&>div]:bg-gradient-to-r [&>div]:from-accent-600 [&>div]:to-accent-700 dark:[&>div]:from-accent-600 dark:[&>div]:to-accent-800"
/>
</div>
);
}

Served by rngit 1.4.2 - Generated in 0.03s